home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / ACORNUSERS / CBSA / EDUCATION / WINDOW / h / WindowData < prev   
Text File  |  1997-12-21  |  755b  |  45 lines

  1.  
  2. //-----------------------------------
  3. //             WindowData.h
  4. //-----------------------------------
  5.  
  6.  
  7. #ifndef WindowData_H
  8. #define WindowData_H
  9.  
  10. #include "IconData.h"
  11.  
  12.  
  13. struct WindowData
  14. {
  15.   int xmin;    int ymin;
  16.   int xmax;    int ymax;
  17.   int scrollx;int scrolly;
  18.   int window_behind;
  19.   int flags;
  20.   unsigned char title_fcolor;
  21.   unsigned char title_bcolor;
  22.   unsigned char area_fcolor;
  23.   unsigned char area_bcolor;
  24.   unsigned char scrollbar_bcolor;
  25.   unsigned char scrollbar_fcolor;
  26.   unsigned char title_selectcolor;
  27.   unsigned char no_use;
  28.   int Xmin;    int Ymin;
  29.   int Xmax;    int Ymax;
  30.   int title_flags;
  31.   int area_flags;
  32.   int sprite_area;
  33.   short width_min;
  34.   short height_min;
  35.   IconData title;
  36.   int nb_icons;
  37.   IconBlock icon[1];
  38. };
  39.   
  40.  
  41. #endif
  42.  
  43.  
  44.  
  45.